home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 026-050 / scopedisk33 / dutils / dutils.doc < prev    next >
Text File  |  1995-03-18  |  2KB  |  93 lines

  1.  
  2.                      ADDCR
  3.  
  4.                  V1.00, 16 October 1988
  5.  
  6. ADDCR <files>
  7.  
  8.     Each file specified is loaded into ram, CR's added before LF's, and
  9.     written back out under the same name.
  10.  
  11.                       CMP
  12.  
  13.                  V1.00, 16 October 1988
  14.  
  15. CMP file1 file2
  16.  
  17.     The two files must be of the same size.  The files are compared for
  18.     exact equality.  An error message is displayed if the files do not
  19.     compare.  Exit value:
  20.  
  21.         0    compare successful
  22.         5    compare failed
  23.         20    unable to open both files
  24.         30    unable to allocate memory!
  25.  
  26.  
  27.                      FINDIT
  28.  
  29.                  V1.00, 16 October 1988
  30.  
  31. FINDIT [-ddir] <wildcard> <wildcard> ...
  32.  
  33.     Search the specified directories for files matching the
  34.     given wildcard.
  35.  
  36.     If no directories are specified, look for a directory list
  37.     in the ENV: enviroment variable FINDITVOLS, of the form:
  38.  
  39.     dir,dir,dir ...
  40.  
  41.     After setting up such an enviroment variable, FINDIT is as
  42.     simple as 'FINDIT <wildcard>'.  Example:
  43.  
  44.     findit list
  45.     findit l\*    (from a shell)
  46.     findit l*    (from a CLI)
  47.  
  48.     The * and ? wildcards are supported.
  49.  
  50.  
  51.                      LIBS
  52.  
  53.                   V1.00, 16 October 1988
  54.  
  55.  
  56. LIBS    [libname]
  57.  
  58.     With no arguments lists libraries and devices currently in
  59.     memory, their version, and the number of references.
  60.  
  61.     If a library name is given as a reference and that library
  62.     has no references it will be removed.  If the library has
  63.     references the delayed-expunge flag is set and the library
  64.     will be removed when the references fall to 0.
  65.  
  66.     This utility is useful for those of us working on our own
  67.     custom libraries.
  68.  
  69. Example:
  70.  
  71.     libs
  72.     libs dres.library
  73.  
  74.                      REMCR
  75.  
  76.                  V1.00, 16 October 1988
  77.  
  78. REMCR <files>
  79.  
  80.     Each file specified is loaded into ram, CR's removed, and written
  81.     back out under the same name.
  82.  
  83.  
  84.                      SCAT
  85.  
  86.                   V1.00, 16 October 1988
  87.  
  88. SCAT <files>
  89.  
  90.     Like cat, but non-ascii characters are displayed in reverse.
  91.  
  92.  
  93.